home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / text / show / jmore03.lzh / jmoresrc.LZH / Makefile.jFontSys < prev    next >
Makefile  |  1992-11-01  |  251b  |  17 lines

  1. #
  2. #    Makefile for jFontSys
  3. #
  4.  
  5. TARGET    = jFontSys
  6. OBJS    = jFontSys.o
  7. SRC    = jFontSys.c
  8. CFLAGS    = -DDEBUG
  9. LIBS    = -lc
  10.  
  11. $(TARGET):    $(OBJS) openlib.o
  12.     ln -o $(TARGET) $(OBJS) openlib.o $(LIBS)
  13.  
  14. $(OBJS):    $(SRC) jFontSys.h jFont.h
  15.  
  16. openlib.o:    openlib.c openlib.h
  17.